
digraph "Server_Structure" {
rankdir = "TB"

subgraph cluster_0 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"seatle" [
		label = "seattle.wikia.com"
		color = "black"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Squid Cache";
	}

subgraph cluster_1 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"web" [
		label = "tampa.wikia.com\ndover.wikia.com\nsydney.wikia.com"
		color = "blue"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
                orentation = 90
	]
		label = "Webserver";
		comment = "tampa.wikia.com|ursula.bomis.com|207.142.131.223"
	}

subgraph cluster_2 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"ross" [
		label = "ross.wikia.com"
		color = "darkgreen"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Mailing Lists";
	}

subgraph cluster_3 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"brussels" [
		label = "brussels.wikia.com"
		color = "red"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Database";
	}

label = "Server structure 09/17/2005";

"internet" -> "seatle"
"internet" -> "ross"
"seatle" -> "web" -> "brussels"
"ross" -> "brussels" [label = "database slave"]
}

